home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2000 September / september_2000.iso / intercd / root / ^Linux / Jooky / randnum.c < prev    next >
Encoding:
C/C++ Source or Header  |  1999-11-01  |  168 b   |  12 lines

  1. #include "includes.h"
  2.  
  3. int randnum()
  4. {
  5.     time_t timey;
  6.  
  7.     timey=time(&timey);
  8.     
  9.     srand((unsigned int)timey);
  10.     return 1+(int) (1000.0*rand()/(RAND_MAX+1.0));
  11. }
  12.